27 |
Is it possible to play a beep/sound when user enters an invalid character ( method 1 )
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "AllowBeep", -1); _ObjectSetProperty( maskedit , "Mask", "`Time: ` 00:00:00"); |
26 |
How can I prevent showing the field's content menu when the user right clicks the control ( method 2 )
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "Mask", ";;;nocontext"); _ObjectSetProperty( maskedit , "Text", "text"); |
25 |
How can I prevent showing the field's content menu when the user right clicks the control ( method 1 )
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "AllowContextMenu", 0); _ObjectSetProperty( maskedit , "Text", "text"); |
24 |
Is it possible to let user choose the inserting mode, when he presses Insert key ( method 2.2 )
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "Mask", "00:00;;;inserttype,overtype"); _ObjectSetProperty( maskedit , "Text", "12:3"); |
23 |
Is it possible to let user choose the inserting mode, when he presses Insert key ( method 2.1 )
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "Mask", "00:00;;;overtype,inserttype"); _ObjectSetProperty( maskedit , "Text", "12:3"); |
22 |
Is it possible to let user choose the inserting mode, when he presses Insert key ( method 1 )
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "Mask", "00:00"); _ObjectSetProperty( maskedit , "Text", "12:3"); _ObjectSetProperty( maskedit , "AllowToggleInsertMode", -1); _ObjectSetProperty( maskedit , "InsertMode", 1); |
21 |
Does your control support overtype mode ( method 2 )
|
20 |
Does your control support overtype mode ( method 1 )
|
19 |
How can I change the colors to show a read only field
|
18 |
How can I lock or make read only the field (method 2)
|
17 |
How can I lock or make read only the field (method 1)
|
16 |
Is it possible to mask a password field (method 2)
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "Right", -1); _ObjectSetProperty( maskedit , "Text", "text"); |
15 |
Is it possible to right align field (method 1)
OBJECT maskedit; maskedit = ObjectByName("AN1") ; _ObjectSetProperty( maskedit , "Mask", "*;;;right"); _ObjectSetProperty( maskedit , "Text", "text"); |
14 |
Is it possible to mask a password field (method 2)
|
13 |
Is it possible to mask a password field (method 1)
|
12 |
How can I mask an integer within a range
|
11 |
How can I mask an integer value with no grouping support
|
10 |
How can I mask an integer value (method 2)
|
9 |
How can I mask an integer value (method 1)
|
8 |
How can I specify the number of digits when masking a float (method 2)
|
7 |
How can I specify the number of digits when masking a float (method 1)
|
6 |
How do I mask a positive, floating point numbers support, including grouping of digits
|
5 |
How do I mask a floating point numbers support, with a different decimal character
|
4 |
How do I mask a floating point numbers support, excluding grouping of digits
|
3 |
How do I mask a floating point numbers support, including grouping of digits
|
2 |
How can I change the control's foreground color
|
1 |
How can I change the control's background color
|